home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / AP.HDR < prev    next >
Text File  |  1994-04-25  |  702b  |  33 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _Ap( cAp_Char ) --> nOrdinalPosition
  8.  
  9. PARAMETERS:
  10.  
  11. cAp_Char : alphabetic character
  12.  
  13. SHORT:
  14.  
  15. Determine alphabetic ordinal position of an alphabetic character.
  16.  
  17. DESCRIPTION:
  18.  
  19. _Ap() returns the numeric alphabetic position of the letter passed. I had
  20. a good use for it once, but forgot what it was.
  21.  
  22. NOTE:
  23.  
  24.  
  25.  
  26. EXAMPLE:
  27.  
  28. ? _Ap('A')   // 1
  29. ? _Ap('K')   // 11
  30. ? _Ap('Z')   // 26
  31.  
  32. ******************************************************************************/
  33.